home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Online / CNetDemo / cnet / sdk / include / bbslist.h next >
Encoding:
C/C++ Source or Header  |  1997-09-04  |  368 b   |  21 lines

  1. #ifndef CNET_BBSLIST
  2. #define CNET_BBSLIST
  3.  
  4. #include "dates.h"
  5.  
  6. struct   BBSItem {
  7.    long   ID;            // serial ID of user who added entry
  8.    char   Phone[16];
  9.    char   Title[26];
  10.    char   Location[21];
  11.    char   Baud[6];
  12.    char   Comments[62];
  13.    char   Country[4];
  14.    char   Flags[10];
  15.    UBYTE  Immortal;
  16.    struct IsDate Date;
  17.    UBYTE  killed;
  18. };
  19.  
  20. #endif
  21.